home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / OpenGL / fadeflip / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  409 b   |  20 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. DATADIR    = ../data/
  6.  
  7. LC++INCS= -I$(ROOT)/usr/include -I$(ROOT)/usr/include/gl
  8. LC++OPTS= -g -DDATADIR=\"$(DATADIR)\"
  9. LLDLIBS = -limage -lGLU -lGL -lX11 -lmalloc
  10. C++FILES = oglwindow.c++ texture.c++ unitsquare.c++ fadeflip.c++ 
  11.  
  12. TARGETS    = fadeflip
  13.  
  14. default all: $(TARGETS)
  15.  
  16. include $(COMMONRULES)
  17.  
  18. $(TARGETS): $(OBJECTS)
  19.     $(C++F) -o $@ $(OBJECTS) $(LDFLAGS)
  20.